2007-08-27 Cody Russell <bratsche@gnome.org>
* modules/engines/ms-windows/msw_style.c: Correct draw_box()
function to check detail for "notebook". This fixes a problem
where notebooks without visible headers were not styling
correctly. (#470033, Daniel Atallah and Cody Russell)
svn path=/trunk/; revision=18689
+2007-08-27 Cody Russell <bratsche@gnome.org>
+
+ * modules/engines/ms-windows/msw_style.c: Correct draw_box()
+ function to check detail for "notebook". This fixes a problem
+ where notebooks without visible headers were not styling
+ correctly. (#470033, Daniel Atallah and Cody Russell)
+
2007-08-23 Cody Russell <bratsche@gnome.org>
* gtk/gtkwindow.c (gtk_window_group_remove_window: Use the
return;
}
}
+ else if (detail && !strcmp (detail, "notebook") && GTK_IS_NOTEBOOK (widget))
+ {
+ GtkNotebook *notebook = GTK_NOTEBOOK (widget);
+
+ if (xp_theme_draw (window, XP_THEME_ELEMENT_TAB_PANE, style,
+ x, y, width, height, state_type, area))
+ {
+ return;
+ }
+ }
+
else
{
const gchar *name = gtk_widget_get_name (widget);